dabo Commit
Revision 6288
Date: 2010-12-25 06:14:55 -0800 (Sat, 25 Dec 2010)
Author: Ed
Trac: http://trac.dabodev.com/changeset/6288
Changed:
U trunk/dabo/lib/RemoteConnector.py
Log:
Broke up a very long line. No functional change.
Diff:
Modified: trunk/dabo/lib/RemoteConnector.py
===================================================================
--- trunk/dabo/lib/RemoteConnector.py 2010-12-25 14:09:33 UTC (rev 6287)
+++ trunk/dabo/lib/RemoteConnector.py 2010-12-25 14:14:55 UTC (rev 6288)
@@ -41,7 +41,9 @@
def _getFullUrl(self, mthd, *args):
- ret = pathjoin(self.UrlBase, "bizservers", "biz", "%s" %
hash(self.obj), self.obj.DataSource, mthd, *args).replace(os.sep, "/")
+ hashstr = "%s" % hash(self.obj)
+ ret = pathjoin(self.UrlBase, "bizservers", "biz", hashstr,
self.obj.DataSource, mthd, *args)
+ ret = ret.replace(os.sep, "/")
return ret
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
Searchable Archives: http://leafe.com/archives/search/dabo-dev
This message:
http://leafe.com/archives/byMID/[email protected]