Changeset 467cd2e for fedd/federation
- Timestamp:
- Sep 20, 2013 10:35:13 AM (11 years ago)
- Branches:
- master
- Children:
- befb8e4
- Parents:
- 1f9c361 (diff), b213b53 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fedd/federation/access.py
rb213b53 r467cd2e 357 357 358 358 cmd = "%s %s" % (self.userconfcmd, project) 359 conf = subprocess.call(shlex.split(cmd), 359 try: 360 conf = subprocess.call(shlex.split(cmd), 360 361 stdout=cf, stderr=dev_null, close_fds=True) 362 except EnvironmentError,e: 363 raise service_error(service_error.internal, 364 "Could not run userconf command: %s %s" \ 365 % (e.filename, e.strerror)) 361 366 362 367 self.auth.set_attribute(confid, "/%s" % str(confid))
Note: See TracChangeset
for help on using the changeset viewer.